home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Suzy B Software 2
/
Suzy B Software CD-ROM 2 (1994).iso
/
extras
/
programm
/
gemfsc19
/
gemfsc19.lzh
/
GEMFBIND
/
VSMCHOIC.S
< prev
next >
Wrap
Text File
|
1993-03-26
|
978b
|
38 lines
;*========================================================================
;* VDIFAST Public Domain VDI bindings.
;*========================================================================
;*------------------------------------------------------------------------
;* Input choice, sample mode.
;*------------------------------------------------------------------------
globl _vsm_choice
_vsm_choice:
; .cargs #8,handle.w,choice.l
handle = 8
choice = 10
link a6,#0
; VContrl #30
move.w handle(a6),-(sp) ; contrl[6]
clr.l -(sp) ; contrl[5,4]
clr.l -(sp) ; contrl[3,2]
clr.w -(sp) ; contrl[1]
move.w #30,-(sp) ; contrl[0]
subq.l #4,sp ;* -> ptsout
pea choice(a6) ;* -> intout
subq.l #8,sp ;* -> ptsin, intin
pea 16(sp) ;* -> contrl
move.l sp,d1
jsr vditrap
move.w 28(sp),d0 ;* Return status from contrl[4].
unlk a6
rts
end